home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Papers / OS Shell in Java / Facade / Facade.java < prev    next >
Encoding:
Java Source  |  1998-06-17  |  457 b   |  21 lines  |  [TEXT/dosa]

  1. //    Facade.java : this is a Java source code file for the program Facade.
  2. //    Copyright 1998, Andrew S. Downs
  3. //    andrew.downs@tulane.edu
  4. //
  5. //    This source code is distributed as freeware.
  6. //    Just keep this author information in the file.  Enjoy!
  7.  
  8. import java.io.*;
  9.  
  10. public class Facade implements Serializable {
  11.     Facade() {
  12.         // Get things rolling...
  13.         Finder f = new Finder();
  14.     }
  15.  
  16.     public static void main( String args[] ) {
  17.         Facade f = new Facade();
  18.     }
  19. }
  20.  
  21.